Hi, |
Re: Dialogbox - Layout DXL interfacing possible? As a general answer a DOORS DXL script can build up a string of data or DXL functions and insert this string as a Layout DXL column. An example of this kind of functionality can be found in DOORSexample script lib\dxl\example\histcol.dxl. |
Re: Dialogbox - Layout DXL interfacing possible? Anyway, it sounds like you want an on-demand script that displays a dialog and prompts the user for input. That input is to be used for a layout column created by the script. This means the script is going to generate DXL code itself, and insert that code into the layout. That's real tricky. The main build-the-layout function may look like this: string BuildTheLayout(string NameSourceModFull) { string Results = "Link lnk for lnk in obj <-\"*\" do { ModName_ mSource = source(lnk) string SourceName = fullName(mSource) if (SourceName != \"" NameSourceModFull "\") continue // Note use of input parameter here >>Add code to display info for this link }" return(Results) } >Louie |